[USER (data scientist)]: Now, let's add the cluster labels back to the original dataset: Please generate a DataFrame with assigned cluster labels for each customer.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd 
import pickle
 
# Load the dataset 
credit_customers = pd.read_csv("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print("credit_customers:\n", credit_customers) 

# save data
pickle.dump(credit_customers,open("./pred_result/credit_customers.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Here's the code. And do you need final result for presentation?
'''
import pandas as pd 
import pickle
 
# Load the dataset 
credit_customers = pd.read_csv("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
